home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Commands
/
Protocols
/
Boasting.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
193b
|
17 lines
// Boasting.h
#ifndef Boasting_h
#define Boasting_h
class Boasting
{
protected:
~Boasting() {}
public:
virtual bool CanBoast() const = 0;
virtual void Boast() = 0;
};
#endif